de56b0d270fb0131eb1af9d7e638f7855d1db7a3,src/main/groovy/beans/BoundASTTransformation.java,BoundASTTransformation,hasBoundAnnotation,#AnnotatedNode#,83
Before Change
*/
public static boolean hasBoundAnnotation(AnnotatedNode node) {
for (AnnotationNode annotation : (Collection<AnnotationNode>) node.getAnnotations()) {
if (Bound.class.getName().equals(annotation.getClassNode().getName())) {
return true;
}
}
After Change
*/
public static boolean hasBoundAnnotation(AnnotatedNode node) {
for (AnnotationNode annotation : (Collection<AnnotationNode>) node.getAnnotations()) {
if (boundClassNode.equals(annotation.getClassNode())) {
return true;
}
}